home *** CD-ROM | disk | FTP | other *** search
- class com.ndimedia.ui.SimpleButton extends com.ndimedia.ui.AbstractButton
- {
- var addEventListener;
- var m_namespace = "SimpleButton";
- function SimpleButton(scope)
- {
- super(scope,true);
- this.setSize(50,30);
- }
- function addOnReleaseCommand(command)
- {
- var eb = com.ndimedia.events.EventBroadcaster.getInstance();
- this.addEventListener(com.ndimedia.events.MouseEventType.MOUSE_RELEASE,function()
- {
- eb.broadcastEvent(new com.ndimedia.events.Event(command,this));
- }
- );
- }
- }
-